cuda_d.cublas_api

Undocumented in source.

Members

Aliases

cublasHandle_t
alias cublasHandle_t = cublasContext*
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cudaStream_t
alias cudaStream_t = void*
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Enums

cublasAtomicsMode_t
enum cublasAtomicsMode_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDataType_t
enum cublasDataType_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDiagType_t
enum cublasDiagType_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasFillMode_t
enum cublasFillMode_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasOperation_t
enum cublasOperation_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasPointerMode_t
enum cublasPointerMode_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSideMode_t
enum cublasSideMode_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasStatus_t
enum cublasStatus_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

cublasCaxpy_v2
cublasStatus_t cublasCaxpy_v2(cublasHandle_t handle, int n, const(cuComplex)* alpha, const(cuComplex)* x, int incx, cuComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCcopy_v2
cublasStatus_t cublasCcopy_v2(cublasHandle_t handle, int n, const(cuComplex)* x, int incx, cuComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCdgmm
cublasStatus_t cublasCdgmm(cublasHandle_t handle, cublasSideMode_t mode, int m, int n, const(cuComplex)* A, int lda, const(cuComplex)* x, int incx, cuComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCdotc_v2
cublasStatus_t cublasCdotc_v2(cublasHandle_t handle, int n, const(cuComplex)* x, int incx, const(cuComplex)* y, int incy, cuComplex* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCdotu_v2
cublasStatus_t cublasCdotu_v2(cublasHandle_t handle, int n, const(cuComplex)* x, int incx, const(cuComplex)* y, int incy, cuComplex* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCgbmv_v2
cublasStatus_t cublasCgbmv_v2(cublasHandle_t handle, cublasOperation_t trans, int m, int n, int kl, int ku, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* x, int incx, const(cuComplex)* beta, cuComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCgeam
cublasStatus_t cublasCgeam(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* beta, const(cuComplex)* B, int ldb, cuComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCgelsBatched
cublasStatus_t cublasCgelsBatched(cublasHandle_t handle, cublasOperation_t trans, int m, int n, int nrhs, cuComplex** Aarray, int lda, cuComplex** Carray, int ldc, int* info, int* devInfoArray, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCgemmBatched
cublasStatus_t cublasCgemmBatched(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, const(cuComplex)* alpha, const(cuComplex)** Aarray, int lda, const(cuComplex)** Barray, int ldb, const(cuComplex)* beta, cuComplex** Carray, int ldc, int batchCount)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCgemm_v2
cublasStatus_t cublasCgemm_v2(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* B, int ldb, const(cuComplex)* beta, cuComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCgemv_v2
cublasStatus_t cublasCgemv_v2(cublasHandle_t handle, cublasOperation_t trans, int m, int n, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* x, int incx, const(cuComplex)* beta, cuComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCgeqrfBatched
cublasStatus_t cublasCgeqrfBatched(cublasHandle_t handle, int m, int n, cuComplex** Aarray, int lda, cuComplex** TauArray, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCgerc_v2
cublasStatus_t cublasCgerc_v2(cublasHandle_t handle, int m, int n, const(cuComplex)* alpha, const(cuComplex)* x, int incx, const(cuComplex)* y, int incy, cuComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCgeru_v2
cublasStatus_t cublasCgeru_v2(cublasHandle_t handle, int m, int n, const(cuComplex)* alpha, const(cuComplex)* x, int incx, const(cuComplex)* y, int incy, cuComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCgetrfBatched
cublasStatus_t cublasCgetrfBatched(cublasHandle_t handle, int n, cuComplex** A, int lda, int* P, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCgetriBatched
cublasStatus_t cublasCgetriBatched(cublasHandle_t handle, int n, const(cuComplex)** A, int lda, const(int)* P, cuComplex** C, int ldc, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCgetrsBatched
cublasStatus_t cublasCgetrsBatched(cublasHandle_t handle, cublasOperation_t trans, int n, int nrhs, const(cuComplex)** Aarray, int lda, const(int)* devIpiv, cuComplex** Barray, int ldb, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasChbmv_v2
cublasStatus_t cublasChbmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, int k, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* x, int incx, const(cuComplex)* beta, cuComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasChemm_v2
cublasStatus_t cublasChemm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, int m, int n, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* B, int ldb, const(cuComplex)* beta, cuComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasChemv_v2
cublasStatus_t cublasChemv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* x, int incx, const(cuComplex)* beta, cuComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCher2_v2
cublasStatus_t cublasCher2_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuComplex)* alpha, const(cuComplex)* x, int incx, const(cuComplex)* y, int incy, cuComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCher2k_v2
cublasStatus_t cublasCher2k_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* B, int ldb, const(float)* beta, cuComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCher_v2
cublasStatus_t cublasCher_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(float)* alpha, const(cuComplex)* x, int incx, cuComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCherk_v2
cublasStatus_t cublasCherk_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(float)* alpha, const(cuComplex)* A, int lda, const(float)* beta, cuComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCherkx
cublasStatus_t cublasCherkx(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* B, int ldb, const(float)* beta, cuComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasChpmv_v2
cublasStatus_t cublasChpmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuComplex)* alpha, const(cuComplex)* AP, const(cuComplex)* x, int incx, const(cuComplex)* beta, cuComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasChpr2_v2
cublasStatus_t cublasChpr2_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuComplex)* alpha, const(cuComplex)* x, int incx, const(cuComplex)* y, int incy, cuComplex* AP)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasChpr_v2
cublasStatus_t cublasChpr_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(float)* alpha, const(cuComplex)* x, int incx, cuComplex* AP)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCmatinvBatched
cublasStatus_t cublasCmatinvBatched(cublasHandle_t handle, int n, const(cuComplex)** A, int lda, cuComplex** Ainv, int lda_inv, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCreate_v2
cublasStatus_t cublasCreate_v2(cublasHandle_t* handle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCrot_v2
cublasStatus_t cublasCrot_v2(cublasHandle_t handle, int n, cuComplex* x, int incx, cuComplex* y, int incy, const(float)* c, const(cuComplex)* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCrotg_v2
cublasStatus_t cublasCrotg_v2(cublasHandle_t handle, cuComplex* a, cuComplex* b, float* c, cuComplex* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCscal_v2
cublasStatus_t cublasCscal_v2(cublasHandle_t handle, int n, const(cuComplex)* alpha, cuComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCsrot_v2
cublasStatus_t cublasCsrot_v2(cublasHandle_t handle, int n, cuComplex* x, int incx, cuComplex* y, int incy, const(float)* c, const(float)* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCsscal_v2
cublasStatus_t cublasCsscal_v2(cublasHandle_t handle, int n, const(float)* alpha, cuComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCswap_v2
cublasStatus_t cublasCswap_v2(cublasHandle_t handle, int n, cuComplex* x, int incx, cuComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCsymm_v2
cublasStatus_t cublasCsymm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, int m, int n, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* B, int ldb, const(cuComplex)* beta, cuComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCsymv_v2
cublasStatus_t cublasCsymv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* x, int incx, const(cuComplex)* beta, cuComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCsyr2_v2
cublasStatus_t cublasCsyr2_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuComplex)* alpha, const(cuComplex)* x, int incx, const(cuComplex)* y, int incy, cuComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCsyr2k_v2
cublasStatus_t cublasCsyr2k_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* B, int ldb, const(cuComplex)* beta, cuComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCsyr_v2
cublasStatus_t cublasCsyr_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuComplex)* alpha, const(cuComplex)* x, int incx, cuComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCsyrk_v2
cublasStatus_t cublasCsyrk_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* beta, cuComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCsyrkx
cublasStatus_t cublasCsyrkx(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* B, int ldb, const(cuComplex)* beta, cuComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCtbmv_v2
cublasStatus_t cublasCtbmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, int k, const(cuComplex)* A, int lda, cuComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCtbsv_v2
cublasStatus_t cublasCtbsv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, int k, const(cuComplex)* A, int lda, cuComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCtpmv_v2
cublasStatus_t cublasCtpmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(cuComplex)* AP, cuComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCtpsv_v2
cublasStatus_t cublasCtpsv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(cuComplex)* AP, cuComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCtpttr
cublasStatus_t cublasCtpttr(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuComplex)* AP, cuComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCtrmm_v2
cublasStatus_t cublasCtrmm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int m, int n, const(cuComplex)* alpha, const(cuComplex)* A, int lda, const(cuComplex)* B, int ldb, cuComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCtrmv_v2
cublasStatus_t cublasCtrmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(cuComplex)* A, int lda, cuComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCtrsmBatched
cublasStatus_t cublasCtrsmBatched(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int m, int n, const(cuComplex)* alpha, const(cuComplex)** A, int lda, cuComplex** B, int ldb, int batchCount)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCtrsm_v2
cublasStatus_t cublasCtrsm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int m, int n, const(cuComplex)* alpha, const(cuComplex)* A, int lda, cuComplex* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCtrsv_v2
cublasStatus_t cublasCtrsv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(cuComplex)* A, int lda, cuComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasCtrttp
cublasStatus_t cublasCtrttp(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuComplex)* A, int lda, cuComplex* AP)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDasum_v2
cublasStatus_t cublasDasum_v2(cublasHandle_t handle, int n, const(double)* x, int incx, double* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDaxpy_v2
cublasStatus_t cublasDaxpy_v2(cublasHandle_t handle, int n, const(double)* alpha, const(double)* x, int incx, double* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDcopy_v2
cublasStatus_t cublasDcopy_v2(cublasHandle_t handle, int n, const(double)* x, int incx, double* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDdgmm
cublasStatus_t cublasDdgmm(cublasHandle_t handle, cublasSideMode_t mode, int m, int n, const(double)* A, int lda, const(double)* x, int incx, double* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDdot_v2
cublasStatus_t cublasDdot_v2(cublasHandle_t handle, int n, const(double)* x, int incx, const(double)* y, int incy, double* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDestroy_v2
cublasStatus_t cublasDestroy_v2(cublasHandle_t handle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDgbmv_v2
cublasStatus_t cublasDgbmv_v2(cublasHandle_t handle, cublasOperation_t trans, int m, int n, int kl, int ku, const(double)* alpha, const(double)* A, int lda, const(double)* x, int incx, const(double)* beta, double* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDgeam
cublasStatus_t cublasDgeam(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, const(double)* alpha, const(double)* A, int lda, const(double)* beta, const(double)* B, int ldb, double* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDgelsBatched
cublasStatus_t cublasDgelsBatched(cublasHandle_t handle, cublasOperation_t trans, int m, int n, int nrhs, double** Aarray, int lda, double** Carray, int ldc, int* info, int* devInfoArray, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDgemmBatched
cublasStatus_t cublasDgemmBatched(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, const(double)* alpha, const(double)** Aarray, int lda, const(double)** Barray, int ldb, const(double)* beta, double** Carray, int ldc, int batchCount)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDgemm_v2
cublasStatus_t cublasDgemm_v2(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, const(double)* alpha, const(double)* A, int lda, const(double)* B, int ldb, const(double)* beta, double* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDgemv_v2
cublasStatus_t cublasDgemv_v2(cublasHandle_t handle, cublasOperation_t trans, int m, int n, const(double)* alpha, const(double)* A, int lda, const(double)* x, int incx, const(double)* beta, double* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDgeqrfBatched
cublasStatus_t cublasDgeqrfBatched(cublasHandle_t handle, int m, int n, double** Aarray, int lda, double** TauArray, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDger_v2
cublasStatus_t cublasDger_v2(cublasHandle_t handle, int m, int n, const(double)* alpha, const(double)* x, int incx, const(double)* y, int incy, double* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDgetrfBatched
cublasStatus_t cublasDgetrfBatched(cublasHandle_t handle, int n, double** A, int lda, int* P, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDgetriBatched
cublasStatus_t cublasDgetriBatched(cublasHandle_t handle, int n, const(double)** A, int lda, const(int)* P, double** C, int ldc, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDgetrsBatched
cublasStatus_t cublasDgetrsBatched(cublasHandle_t handle, cublasOperation_t trans, int n, int nrhs, const(double)** Aarray, int lda, const(int)* devIpiv, double** Barray, int ldb, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDmatinvBatched
cublasStatus_t cublasDmatinvBatched(cublasHandle_t handle, int n, const(double)** A, int lda, double** Ainv, int lda_inv, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDnrm2_v2
cublasStatus_t cublasDnrm2_v2(cublasHandle_t handle, int n, const(double)* x, int incx, double* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDrot_v2
cublasStatus_t cublasDrot_v2(cublasHandle_t handle, int n, double* x, int incx, double* y, int incy, const(double)* c, const(double)* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDrotg_v2
cublasStatus_t cublasDrotg_v2(cublasHandle_t handle, double* a, double* b, double* c, double* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDrotm_v2
cublasStatus_t cublasDrotm_v2(cublasHandle_t handle, int n, double* x, int incx, double* y, int incy, const(double)* param)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDrotmg_v2
cublasStatus_t cublasDrotmg_v2(cublasHandle_t handle, double* d1, double* d2, double* x1, const(double)* y1, double* param)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDsbmv_v2
cublasStatus_t cublasDsbmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, int k, const(double)* alpha, const(double)* A, int lda, const(double)* x, int incx, const(double)* beta, double* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDscal_v2
cublasStatus_t cublasDscal_v2(cublasHandle_t handle, int n, const(double)* alpha, double* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDspmv_v2
cublasStatus_t cublasDspmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(double)* alpha, const(double)* AP, const(double)* x, int incx, const(double)* beta, double* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDspr2_v2
cublasStatus_t cublasDspr2_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(double)* alpha, const(double)* x, int incx, const(double)* y, int incy, double* AP)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDspr_v2
cublasStatus_t cublasDspr_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(double)* alpha, const(double)* x, int incx, double* AP)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDswap_v2
cublasStatus_t cublasDswap_v2(cublasHandle_t handle, int n, double* x, int incx, double* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDsymm_v2
cublasStatus_t cublasDsymm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, int m, int n, const(double)* alpha, const(double)* A, int lda, const(double)* B, int ldb, const(double)* beta, double* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDsymv_v2
cublasStatus_t cublasDsymv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(double)* alpha, const(double)* A, int lda, const(double)* x, int incx, const(double)* beta, double* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDsyr2_v2
cublasStatus_t cublasDsyr2_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(double)* alpha, const(double)* x, int incx, const(double)* y, int incy, double* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDsyr2k_v2
cublasStatus_t cublasDsyr2k_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(double)* alpha, const(double)* A, int lda, const(double)* B, int ldb, const(double)* beta, double* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDsyr_v2
cublasStatus_t cublasDsyr_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(double)* alpha, const(double)* x, int incx, double* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDsyrk_v2
cublasStatus_t cublasDsyrk_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(double)* alpha, const(double)* A, int lda, const(double)* beta, double* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDsyrkx
cublasStatus_t cublasDsyrkx(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(double)* alpha, const(double)* A, int lda, const(double)* B, int ldb, const(double)* beta, double* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDtbmv_v2
cublasStatus_t cublasDtbmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, int k, const(double)* A, int lda, double* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDtbsv_v2
cublasStatus_t cublasDtbsv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, int k, const(double)* A, int lda, double* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDtpmv_v2
cublasStatus_t cublasDtpmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(double)* AP, double* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDtpsv_v2
cublasStatus_t cublasDtpsv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(double)* AP, double* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDtpttr
cublasStatus_t cublasDtpttr(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(double)* AP, double* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDtrmm_v2
cublasStatus_t cublasDtrmm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int m, int n, const(double)* alpha, const(double)* A, int lda, const(double)* B, int ldb, double* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDtrmv_v2
cublasStatus_t cublasDtrmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(double)* A, int lda, double* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDtrsmBatched
cublasStatus_t cublasDtrsmBatched(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int m, int n, const(double)* alpha, const(double)** A, int lda, double** B, int ldb, int batchCount)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDtrsm_v2
cublasStatus_t cublasDtrsm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int m, int n, const(double)* alpha, const(double)* A, int lda, double* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDtrsv_v2
cublasStatus_t cublasDtrsv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(double)* A, int lda, double* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDtrttp
cublasStatus_t cublasDtrttp(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(double)* A, int lda, double* AP)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDzasum_v2
cublasStatus_t cublasDzasum_v2(cublasHandle_t handle, int n, const(cuDoubleComplex)* x, int incx, double* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasDznrm2_v2
cublasStatus_t cublasDznrm2_v2(cublasHandle_t handle, int n, const(cuDoubleComplex)* x, int incx, double* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasGetAtomicsMode
cublasStatus_t cublasGetAtomicsMode(cublasHandle_t handle, cublasAtomicsMode_t* mode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasGetMatrix
cublasStatus_t cublasGetMatrix(int rows, int cols, int elemSize, const(void)* A, int lda, void* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasGetMatrixAsync
cublasStatus_t cublasGetMatrixAsync(int rows, int cols, int elemSize, const(void)* A, int lda, void* B, int ldb, cudaStream_t stream)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasGetPointerMode_v2
cublasStatus_t cublasGetPointerMode_v2(cublasHandle_t handle, cublasPointerMode_t* mode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasGetStream_v2
cublasStatus_t cublasGetStream_v2(cublasHandle_t handle, cudaStream_t* streamId)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasGetVector
cublasStatus_t cublasGetVector(int n, int elemSize, const(void)* x, int incx, void* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasGetVectorAsync
cublasStatus_t cublasGetVectorAsync(int n, int elemSize, const(void)* devicePtr, int incx, void* hostPtr, int incy, cudaStream_t stream)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasGetVersion_v2
cublasStatus_t cublasGetVersion_v2(cublasHandle_t handle, int* version_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasHgemm
cublasStatus_t cublasHgemm(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, const(half)* alpha, const(half)* A, int lda, const(half)* B, int ldb, const(half)* beta, half* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasIcamax_v2
cublasStatus_t cublasIcamax_v2(cublasHandle_t handle, int n, const(cuComplex)* x, int incx, int* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasIcamin_v2
cublasStatus_t cublasIcamin_v2(cublasHandle_t handle, int n, const(cuComplex)* x, int incx, int* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasIdamax_v2
cublasStatus_t cublasIdamax_v2(cublasHandle_t handle, int n, const(double)* x, int incx, int* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasIdamin_v2
cublasStatus_t cublasIdamin_v2(cublasHandle_t handle, int n, const(double)* x, int incx, int* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasIsamax_v2
cublasStatus_t cublasIsamax_v2(cublasHandle_t handle, int n, const(float)* x, int incx, int* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasIsamin_v2
cublasStatus_t cublasIsamin_v2(cublasHandle_t handle, int n, const(float)* x, int incx, int* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasIzamax_v2
cublasStatus_t cublasIzamax_v2(cublasHandle_t handle, int n, const(cuDoubleComplex)* x, int incx, int* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasIzamin_v2
cublasStatus_t cublasIzamin_v2(cublasHandle_t handle, int n, const(cuDoubleComplex)* x, int incx, int* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSasum_v2
cublasStatus_t cublasSasum_v2(cublasHandle_t handle, int n, const(float)* x, int incx, float* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSaxpy_v2
cublasStatus_t cublasSaxpy_v2(cublasHandle_t handle, int n, const(float)* alpha, const(float)* x, int incx, float* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasScasum_v2
cublasStatus_t cublasScasum_v2(cublasHandle_t handle, int n, const(cuComplex)* x, int incx, float* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasScnrm2_v2
cublasStatus_t cublasScnrm2_v2(cublasHandle_t handle, int n, const(cuComplex)* x, int incx, float* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasScopy_v2
cublasStatus_t cublasScopy_v2(cublasHandle_t handle, int n, const(float)* x, int incx, float* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSdgmm
cublasStatus_t cublasSdgmm(cublasHandle_t handle, cublasSideMode_t mode, int m, int n, const(float)* A, int lda, const(float)* x, int incx, float* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSdot_v2
cublasStatus_t cublasSdot_v2(cublasHandle_t handle, int n, const(float)* x, int incx, const(float)* y, int incy, float* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSetAtomicsMode
cublasStatus_t cublasSetAtomicsMode(cublasHandle_t handle, cublasAtomicsMode_t mode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSetMatrix
cublasStatus_t cublasSetMatrix(int rows, int cols, int elemSize, const(void)* A, int lda, void* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSetMatrixAsync
cublasStatus_t cublasSetMatrixAsync(int rows, int cols, int elemSize, const(void)* A, int lda, void* B, int ldb, cudaStream_t stream)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSetPointerMode_v2
cublasStatus_t cublasSetPointerMode_v2(cublasHandle_t handle, cublasPointerMode_t mode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSetStream_v2
cublasStatus_t cublasSetStream_v2(cublasHandle_t handle, cudaStream_t streamId)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSetVector
cublasStatus_t cublasSetVector(int n, int elemSize, const(void)* x, int incx, void* devicePtr, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSetVectorAsync
cublasStatus_t cublasSetVectorAsync(int n, int elemSize, const(void)* hostPtr, int incx, void* devicePtr, int incy, cudaStream_t stream)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSgbmv_v2
cublasStatus_t cublasSgbmv_v2(cublasHandle_t handle, cublasOperation_t trans, int m, int n, int kl, int ku, const(float)* alpha, const(float)* A, int lda, const(float)* x, int incx, const(float)* beta, float* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSgeam
cublasStatus_t cublasSgeam(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, const(float)* alpha, const(float)* A, int lda, const(float)* beta, const(float)* B, int ldb, float* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSgelsBatched
cublasStatus_t cublasSgelsBatched(cublasHandle_t handle, cublasOperation_t trans, int m, int n, int nrhs, float** Aarray, int lda, float** Carray, int ldc, int* info, int* devInfoArray, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSgemmBatched
cublasStatus_t cublasSgemmBatched(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, const(float)* alpha, const(float)** Aarray, int lda, const(float)** Barray, int ldb, const(float)* beta, float** Carray, int ldc, int batchCount)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSgemmEx
cublasStatus_t cublasSgemmEx(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, const(float)* alpha, const(void)* A, cublasDataType_t Atype, int lda, const(void)* B, cublasDataType_t Btype, int ldb, const(float)* beta, void* C, cublasDataType_t Ctype, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSgemm_v2
cublasStatus_t cublasSgemm_v2(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, const(float)* alpha, const(float)* A, int lda, const(float)* B, int ldb, const(float)* beta, float* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSgemv_v2
cublasStatus_t cublasSgemv_v2(cublasHandle_t handle, cublasOperation_t trans, int m, int n, const(float)* alpha, const(float)* A, int lda, const(float)* x, int incx, const(float)* beta, float* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSgeqrfBatched
cublasStatus_t cublasSgeqrfBatched(cublasHandle_t handle, int m, int n, float** Aarray, int lda, float** TauArray, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSger_v2
cublasStatus_t cublasSger_v2(cublasHandle_t handle, int m, int n, const(float)* alpha, const(float)* x, int incx, const(float)* y, int incy, float* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSgetrfBatched
cublasStatus_t cublasSgetrfBatched(cublasHandle_t handle, int n, float** A, int lda, int* P, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSgetriBatched
cublasStatus_t cublasSgetriBatched(cublasHandle_t handle, int n, const(float)** A, int lda, const(int)* P, float** C, int ldc, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSgetrsBatched
cublasStatus_t cublasSgetrsBatched(cublasHandle_t handle, cublasOperation_t trans, int n, int nrhs, const(float)** Aarray, int lda, const(int)* devIpiv, float** Barray, int ldb, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSmatinvBatched
cublasStatus_t cublasSmatinvBatched(cublasHandle_t handle, int n, const(float)** A, int lda, float** Ainv, int lda_inv, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSnrm2_v2
cublasStatus_t cublasSnrm2_v2(cublasHandle_t handle, int n, const(float)* x, int incx, float* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSrot_v2
cublasStatus_t cublasSrot_v2(cublasHandle_t handle, int n, float* x, int incx, float* y, int incy, const(float)* c, const(float)* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSrotg_v2
cublasStatus_t cublasSrotg_v2(cublasHandle_t handle, float* a, float* b, float* c, float* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSrotm_v2
cublasStatus_t cublasSrotm_v2(cublasHandle_t handle, int n, float* x, int incx, float* y, int incy, const(float)* param)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSrotmg_v2
cublasStatus_t cublasSrotmg_v2(cublasHandle_t handle, float* d1, float* d2, float* x1, const(float)* y1, float* param)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSsbmv_v2
cublasStatus_t cublasSsbmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, int k, const(float)* alpha, const(float)* A, int lda, const(float)* x, int incx, const(float)* beta, float* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSscal_v2
cublasStatus_t cublasSscal_v2(cublasHandle_t handle, int n, const(float)* alpha, float* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSspmv_v2
cublasStatus_t cublasSspmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(float)* alpha, const(float)* AP, const(float)* x, int incx, const(float)* beta, float* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSspr2_v2
cublasStatus_t cublasSspr2_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(float)* alpha, const(float)* x, int incx, const(float)* y, int incy, float* AP)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSspr_v2
cublasStatus_t cublasSspr_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(float)* alpha, const(float)* x, int incx, float* AP)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSswap_v2
cublasStatus_t cublasSswap_v2(cublasHandle_t handle, int n, float* x, int incx, float* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSsymm_v2
cublasStatus_t cublasSsymm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, int m, int n, const(float)* alpha, const(float)* A, int lda, const(float)* B, int ldb, const(float)* beta, float* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSsymv_v2
cublasStatus_t cublasSsymv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(float)* alpha, const(float)* A, int lda, const(float)* x, int incx, const(float)* beta, float* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSsyr2_v2
cublasStatus_t cublasSsyr2_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(float)* alpha, const(float)* x, int incx, const(float)* y, int incy, float* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSsyr2k_v2
cublasStatus_t cublasSsyr2k_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(float)* alpha, const(float)* A, int lda, const(float)* B, int ldb, const(float)* beta, float* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSsyr_v2
cublasStatus_t cublasSsyr_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(float)* alpha, const(float)* x, int incx, float* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSsyrk_v2
cublasStatus_t cublasSsyrk_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(float)* alpha, const(float)* A, int lda, const(float)* beta, float* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasSsyrkx
cublasStatus_t cublasSsyrkx(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(float)* alpha, const(float)* A, int lda, const(float)* B, int ldb, const(float)* beta, float* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasStbmv_v2
cublasStatus_t cublasStbmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, int k, const(float)* A, int lda, float* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasStbsv_v2
cublasStatus_t cublasStbsv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, int k, const(float)* A, int lda, float* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasStpmv_v2
cublasStatus_t cublasStpmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(float)* AP, float* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasStpsv_v2
cublasStatus_t cublasStpsv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(float)* AP, float* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasStpttr
cublasStatus_t cublasStpttr(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(float)* AP, float* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasStrmm_v2
cublasStatus_t cublasStrmm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int m, int n, const(float)* alpha, const(float)* A, int lda, const(float)* B, int ldb, float* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasStrmv_v2
cublasStatus_t cublasStrmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(float)* A, int lda, float* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasStrsmBatched
cublasStatus_t cublasStrsmBatched(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int m, int n, const(float)* alpha, const(float)** A, int lda, float** B, int ldb, int batchCount)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasStrsm_v2
cublasStatus_t cublasStrsm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int m, int n, const(float)* alpha, const(float)* A, int lda, float* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasStrsv_v2
cublasStatus_t cublasStrsv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(float)* A, int lda, float* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasStrttp
cublasStatus_t cublasStrttp(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(float)* A, int lda, float* AP)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasXerbla
void cublasXerbla(const(char)* srName, int info)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZaxpy_v2
cublasStatus_t cublasZaxpy_v2(cublasHandle_t handle, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* x, int incx, cuDoubleComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZcopy_v2
cublasStatus_t cublasZcopy_v2(cublasHandle_t handle, int n, const(cuDoubleComplex)* x, int incx, cuDoubleComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZdgmm
cublasStatus_t cublasZdgmm(cublasHandle_t handle, cublasSideMode_t mode, int m, int n, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* x, int incx, cuDoubleComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZdotc_v2
cublasStatus_t cublasZdotc_v2(cublasHandle_t handle, int n, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* y, int incy, cuDoubleComplex* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZdotu_v2
cublasStatus_t cublasZdotu_v2(cublasHandle_t handle, int n, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* y, int incy, cuDoubleComplex* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZdrot_v2
cublasStatus_t cublasZdrot_v2(cublasHandle_t handle, int n, cuDoubleComplex* x, int incx, cuDoubleComplex* y, int incy, const(double)* c, const(double)* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZdscal_v2
cublasStatus_t cublasZdscal_v2(cublasHandle_t handle, int n, const(double)* alpha, cuDoubleComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZgbmv_v2
cublasStatus_t cublasZgbmv_v2(cublasHandle_t handle, cublasOperation_t trans, int m, int n, int kl, int ku, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* beta, cuDoubleComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZgeam
cublasStatus_t cublasZgeam(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* beta, const(cuDoubleComplex)* B, int ldb, cuDoubleComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZgelsBatched
cublasStatus_t cublasZgelsBatched(cublasHandle_t handle, cublasOperation_t trans, int m, int n, int nrhs, cuDoubleComplex** Aarray, int lda, cuDoubleComplex** Carray, int ldc, int* info, int* devInfoArray, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZgemmBatched
cublasStatus_t cublasZgemmBatched(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)** Aarray, int lda, const(cuDoubleComplex)** Barray, int ldb, const(cuDoubleComplex)* beta, cuDoubleComplex** Carray, int ldc, int batchCount)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZgemm_v2
cublasStatus_t cublasZgemm_v2(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* B, int ldb, const(cuDoubleComplex)* beta, cuDoubleComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZgemv_v2
cublasStatus_t cublasZgemv_v2(cublasHandle_t handle, cublasOperation_t trans, int m, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* beta, cuDoubleComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZgeqrfBatched
cublasStatus_t cublasZgeqrfBatched(cublasHandle_t handle, int m, int n, cuDoubleComplex** Aarray, int lda, cuDoubleComplex** TauArray, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZgerc_v2
cublasStatus_t cublasZgerc_v2(cublasHandle_t handle, int m, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* y, int incy, cuDoubleComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZgeru_v2
cublasStatus_t cublasZgeru_v2(cublasHandle_t handle, int m, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* y, int incy, cuDoubleComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZgetrfBatched
cublasStatus_t cublasZgetrfBatched(cublasHandle_t handle, int n, cuDoubleComplex** A, int lda, int* P, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZgetriBatched
cublasStatus_t cublasZgetriBatched(cublasHandle_t handle, int n, const(cuDoubleComplex)** A, int lda, const(int)* P, cuDoubleComplex** C, int ldc, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZgetrsBatched
cublasStatus_t cublasZgetrsBatched(cublasHandle_t handle, cublasOperation_t trans, int n, int nrhs, const(cuDoubleComplex)** Aarray, int lda, const(int)* devIpiv, cuDoubleComplex** Barray, int ldb, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZhbmv_v2
cublasStatus_t cublasZhbmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, int k, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* beta, cuDoubleComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZhemm_v2
cublasStatus_t cublasZhemm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, int m, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* B, int ldb, const(cuDoubleComplex)* beta, cuDoubleComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZhemv_v2
cublasStatus_t cublasZhemv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* beta, cuDoubleComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZher2_v2
cublasStatus_t cublasZher2_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* y, int incy, cuDoubleComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZher2k_v2
cublasStatus_t cublasZher2k_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* B, int ldb, const(double)* beta, cuDoubleComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZher_v2
cublasStatus_t cublasZher_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(double)* alpha, const(cuDoubleComplex)* x, int incx, cuDoubleComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZherk_v2
cublasStatus_t cublasZherk_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(double)* alpha, const(cuDoubleComplex)* A, int lda, const(double)* beta, cuDoubleComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZherkx
cublasStatus_t cublasZherkx(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* B, int ldb, const(double)* beta, cuDoubleComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZhpmv_v2
cublasStatus_t cublasZhpmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* AP, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* beta, cuDoubleComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZhpr2_v2
cublasStatus_t cublasZhpr2_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* y, int incy, cuDoubleComplex* AP)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZhpr_v2
cublasStatus_t cublasZhpr_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(double)* alpha, const(cuDoubleComplex)* x, int incx, cuDoubleComplex* AP)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZmatinvBatched
cublasStatus_t cublasZmatinvBatched(cublasHandle_t handle, int n, const(cuDoubleComplex)** A, int lda, cuDoubleComplex** Ainv, int lda_inv, int* info, int batchSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZrot_v2
cublasStatus_t cublasZrot_v2(cublasHandle_t handle, int n, cuDoubleComplex* x, int incx, cuDoubleComplex* y, int incy, const(double)* c, const(cuDoubleComplex)* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZrotg_v2
cublasStatus_t cublasZrotg_v2(cublasHandle_t handle, cuDoubleComplex* a, cuDoubleComplex* b, double* c, cuDoubleComplex* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZscal_v2
cublasStatus_t cublasZscal_v2(cublasHandle_t handle, int n, const(cuDoubleComplex)* alpha, cuDoubleComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZswap_v2
cublasStatus_t cublasZswap_v2(cublasHandle_t handle, int n, cuDoubleComplex* x, int incx, cuDoubleComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZsymm_v2
cublasStatus_t cublasZsymm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, int m, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* B, int ldb, const(cuDoubleComplex)* beta, cuDoubleComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZsymv_v2
cublasStatus_t cublasZsymv_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* beta, cuDoubleComplex* y, int incy)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZsyr2_v2
cublasStatus_t cublasZsyr2_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* x, int incx, const(cuDoubleComplex)* y, int incy, cuDoubleComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZsyr2k_v2
cublasStatus_t cublasZsyr2k_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* B, int ldb, const(cuDoubleComplex)* beta, cuDoubleComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZsyr_v2
cublasStatus_t cublasZsyr_v2(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* x, int incx, cuDoubleComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZsyrk_v2
cublasStatus_t cublasZsyrk_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* beta, cuDoubleComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZsyrkx
cublasStatus_t cublasZsyrkx(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, int n, int k, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* B, int ldb, const(cuDoubleComplex)* beta, cuDoubleComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZtbmv_v2
cublasStatus_t cublasZtbmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, int k, const(cuDoubleComplex)* A, int lda, cuDoubleComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZtbsv_v2
cublasStatus_t cublasZtbsv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, int k, const(cuDoubleComplex)* A, int lda, cuDoubleComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZtpmv_v2
cublasStatus_t cublasZtpmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(cuDoubleComplex)* AP, cuDoubleComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZtpsv_v2
cublasStatus_t cublasZtpsv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(cuDoubleComplex)* AP, cuDoubleComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZtpttr
cublasStatus_t cublasZtpttr(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuDoubleComplex)* AP, cuDoubleComplex* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZtrmm_v2
cublasStatus_t cublasZtrmm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int m, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, const(cuDoubleComplex)* B, int ldb, cuDoubleComplex* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZtrmv_v2
cublasStatus_t cublasZtrmv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(cuDoubleComplex)* A, int lda, cuDoubleComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZtrsmBatched
cublasStatus_t cublasZtrsmBatched(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int m, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)** A, int lda, cuDoubleComplex** B, int ldb, int batchCount)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZtrsm_v2
cublasStatus_t cublasZtrsm_v2(cublasHandle_t handle, cublasSideMode_t side, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int m, int n, const(cuDoubleComplex)* alpha, const(cuDoubleComplex)* A, int lda, cuDoubleComplex* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZtrsv_v2
cublasStatus_t cublasZtrsv_v2(cublasHandle_t handle, cublasFillMode_t uplo, cublasOperation_t trans, cublasDiagType_t diag, int n, const(cuDoubleComplex)* A, int lda, cuDoubleComplex* x, int incx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cublasZtrttp
cublasStatus_t cublasZtrttp(cublasHandle_t handle, cublasFillMode_t uplo, int n, const(cuDoubleComplex)* A, int lda, cuDoubleComplex* AP)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

cublasContext
struct cublasContext
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
half
struct half
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
half2
struct half2
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta